home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
mus
/
play
/
DeliTracker1_37.lha
/
DeliTracker
/
Rexx
/
dt_random.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-05-07
|
208b
|
19 lines
/* DeliTracker - toggles random */
address 'rexx_DT'
options results
status G rnd
if result == "no" then do
random yes
say "Random is now on..."
end
else do
random no
say "Random is now off..."
end